ghaction-github-pages/tsconfig.json

20 lines
403 B
JSON
Raw Normal View History

2019-10-11 07:41:16 +08:00
{
"compilerOptions": {
2023-09-10 02:24:16 +08:00
"esModuleInterop": true,
2019-10-11 07:41:16 +08:00
"target": "es6",
"module": "commonjs",
2023-09-10 02:24:16 +08:00
"strict": true,
"sourceMap": true,
2019-10-11 07:41:16 +08:00
"newLine": "lf",
"outDir": "./lib",
"rootDir": "./src",
"forceConsistentCasingInFileNames": true,
2019-10-11 07:41:16 +08:00
"noImplicitAny": false,
2023-09-10 02:24:16 +08:00
"resolveJsonModule": true,
"useUnknownInCatchVariables": false,
2019-10-11 07:41:16 +08:00
},
2023-09-10 02:24:16 +08:00
"exclude": [
"node_modules"
]
2019-10-11 07:41:16 +08:00
}