mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-05-25 18:21:36 +08:00
24 lines
446 B
JSON
24 lines
446 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es2017",
|
|
"lib": ["es2017", "esnext.bigint"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"sourceMap": true,
|
|
"composite": true,
|
|
"declaration": true,
|
|
"outDir": "./lib",
|
|
"rootDir": "./src"
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
],
|
|
"include": [
|
|
"src/**/*",
|
|
]
|
|
}
|