2019-04-12 14:37:47 +00:00
|
|
|
{
|
|
|
|
"compileOnSave": true,
|
|
|
|
"compilerOptions": {
|
|
|
|
"strictNullChecks": true,
|
2020-04-29 18:39:40 +00:00
|
|
|
"target": "ES6",
|
2024-05-03 18:31:14 +00:00
|
|
|
"module": "Node16",
|
2019-04-12 14:37:47 +00:00
|
|
|
"noImplicitAny": false,
|
2019-11-14 20:20:16 +00:00
|
|
|
"importHelpers": true,
|
2019-04-12 14:37:47 +00:00
|
|
|
"noUnusedLocals": false,
|
|
|
|
"removeComments": false,
|
2019-07-25 18:49:46 +00:00
|
|
|
"outDir": "./build/esm",
|
2019-04-12 14:37:47 +00:00
|
|
|
"sourceMap": true,
|
2024-05-03 18:31:14 +00:00
|
|
|
"esModuleInterop": true,
|
2024-04-25 18:06:55 +00:00
|
|
|
"skipLibCheck": true,
|
2024-05-03 18:31:14 +00:00
|
|
|
"moduleResolution": "Node16",
|
2020-04-29 18:39:40 +00:00
|
|
|
"strictPropertyInitialization": true,
|
|
|
|
"downlevelIteration": true,
|
2019-12-16 22:13:03 +00:00
|
|
|
"experimentalDecorators": true,
|
2024-05-03 18:31:14 +00:00
|
|
|
"lib": ["es6", "dom", "es2015"],
|
|
|
|
"baseUrl": "./",
|
|
|
|
"rootDir": "./"
|
2019-04-12 14:37:47 +00:00
|
|
|
},
|
2024-05-03 18:31:14 +00:00
|
|
|
"include": ["Tone/**/*.ts", "test/**/*.ts"],
|
|
|
|
"exclude": ["node_modules", "test/integration/**"]
|
|
|
|
}
|