Tone.js/tsconfig.json
2019-04-12 10:37:47 -04:00

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"
]
}