mirror of
https://github.com/wassname/talk.git
synced 2026-07-02 10:47:07 +08:00
27 lines
586 B
JSON
27 lines
586 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"allowJs": true,
|
|
"noEmit": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"noErrorTruncation": true,
|
|
"lib": ["es6", "esnext.asynciterable"]
|
|
},
|
|
"include": [
|
|
"./src/**/.*.js",
|
|
"./scripts/**/*",
|
|
"./config/**/*",
|
|
"./test/**/*",
|
|
"*.js"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|