mirror of
https://github.com/Tonejs/Tone.js
synced 2024-12-26 11:33:09 +00:00
25 lines
633 B
JSON
25 lines
633 B
JSON
{
|
|
"compileOnSave": true,
|
|
"compilerOptions": {
|
|
"strictNullChecks": true,
|
|
"target": "ES6",
|
|
"module": "Node16",
|
|
"noImplicitAny": false,
|
|
"importHelpers": true,
|
|
"noUnusedLocals": false,
|
|
"removeComments": false,
|
|
"outDir": "./build/esm",
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "Node16",
|
|
"strictPropertyInitialization": true,
|
|
"downlevelIteration": true,
|
|
"experimentalDecorators": true,
|
|
"lib": ["es6", "dom", "es2015"],
|
|
"baseUrl": "./",
|
|
"rootDir": "./"
|
|
},
|
|
"include": ["Tone/**/*.ts", "test/**/*.ts"],
|
|
"exclude": ["node_modules", "test/integration/**"]
|
|
}
|