mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-13 23:37:14 +00:00
a256ae2e6c
* working on getting actions to run * running all tests * run on CHROME only * Update test.yml * ignoring node_modules * updating typedocs * trying to ignore compiler errors * Update tsconfig.json * running doc tests in parallel * speeding up docs example tests * Update test.yml * testing README * 2 spaces instead of 4 * codecov * remove travis ci * adding token * updating codecov
30 lines
No EOL
581 B
JSON
30 lines
No EOL
581 B
JSON
{
|
|
"compileOnSave": true,
|
|
"compilerOptions": {
|
|
"strictNullChecks": true,
|
|
"target": "ES6",
|
|
"module": "ES2015",
|
|
"noImplicitAny": false,
|
|
"importHelpers": true,
|
|
"noUnusedLocals": false,
|
|
"removeComments": false,
|
|
"outDir": "./build/esm",
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "node",
|
|
"strictPropertyInitialization": true,
|
|
"downlevelIteration": true,
|
|
"experimentalDecorators": true,
|
|
"lib": [
|
|
"es6",
|
|
"dom",
|
|
"es2015"
|
|
],
|
|
"baseUrl": "./"
|
|
},
|
|
"include": [
|
|
"Tone/**/*.ts",
|
|
"test/**/*.ts"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
} |