archive
/
tstatic
Archived
1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
tstatic/tsconfig.json

29 lines
512 B
JSON
Raw Normal View History

{
"compilerOptions": {
"outDir": "dist",
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"experimentalDecorators": true,
"preserveConstEnums": true,
"allowJs": true,
"sourceMap": true,
"pretty": true
},
"filesGlob": [
"typings/index.d.ts",
"src/**/*.ts"
],
"exclude": [
"dist",
2017-02-19 18:19:45 +00:00
"node_modules",
2017-02-19 21:53:06 +00:00
"scripts/",
2017-02-19 21:59:54 +00:00
"tests/"
],
"typeRoots": [
"node_modules",
2018-01-28 11:24:43 +00:00
"node_modules/@types/",
"src/types"
],
"compileOnSave": false
}