Tone.js/tsconfig.json

27 lines
669 B
JSON
Raw Normal View History

2019-04-12 14:37:47 +00:00
{
"compileOnSave": true,
"compilerOptions": {
"strictNullChecks": true,
2020-04-29 18:39:40 +00:00
"target": "ES6",
"module": "ES2015",
2019-04-12 14:37:47 +00:00
"noImplicitAny": false,
"importHelpers": true,
2019-04-12 14:37:47 +00:00
"noUnusedLocals": false,
"removeComments": false,
"outDir": "./build/esm",
2024-05-01 19:55:52 +00:00
"verbatimModuleSyntax" : false,
2019-04-12 14:37:47 +00:00
"sourceMap": true,
2024-05-01 19:55:52 +00:00
"esModuleInterop": true,
"skipLibCheck": true,
2024-05-01 19:55:52 +00:00
"moduleResolution": "Bundler",
2020-04-29 18:39:40 +00:00
"strictPropertyInitialization": true,
"downlevelIteration": true,
"experimentalDecorators": true,
2024-05-01 19:55:52 +00:00
"lib": ["es6", "dom", "es2015"],
"baseUrl": "./",
"rootDir": "./",
2019-04-12 14:37:47 +00:00
},
2024-05-01 19:55:52 +00:00
"include": ["Tone/**/*.ts", "test/**/*.ts"],
2024-05-03 14:12:55 +00:00
"exclude": ["node_modules", "test/integration/**"]
2024-05-01 19:55:52 +00:00
}