mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-16 08:38:00 +00:00
25 lines
No EOL
571 B
JSON
25 lines
No EOL
571 B
JSON
{
|
|
"compileOnSave": true,
|
|
"compilerOptions": {
|
|
"strictNullChecks": true,
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"noImplicitAny": false,
|
|
"noUnusedLocals": false,
|
|
"removeComments": false,
|
|
"experimentalDecorators": true,
|
|
// "outFile": "./build/Tone.js",
|
|
"outDir": "./build",
|
|
"sourceMap": true,
|
|
"moduleResolution": "classic",
|
|
"strictPropertyInitialization" : true,
|
|
"lib": ["es6", "dom"],
|
|
"baseUrl": "./",
|
|
"paths" : {
|
|
"@tonejs/plot" : ["./node_modules/@tonejs/plot/dist/index.d.ts"]
|
|
}
|
|
},
|
|
"include": [
|
|
"Tone/**/*.ts", "test/**/*.ts"
|
|
]
|
|
} |