Tone.js/tsconfig.json
Yotam Mann a256ae2e6c
Working on getting github actions to run (#1231)
* 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
2024-04-25 14:06:55 -04:00

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