mirror of
https://github.com/Start9Labs/start-sdk.git
synced 2026-03-26 10:21:55 +00:00
20 lines
470 B
JSON
20 lines
470 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"strict": true,
|
|
"outDir": "dist",
|
|
"preserveConstEnums": true,
|
|
"sourceMap": true,
|
|
"target": "es2017",
|
|
"pretty": true,
|
|
"declaration": true,
|
|
"noImplicitAny": true,
|
|
"esModuleInterop": true,
|
|
"types": ["node", "jest"],
|
|
"moduleResolution": "node",
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["lib/**/*"],
|
|
"exclude": ["lib/**/*.spec.ts", "lib/**/*.gen.ts", "list", "node_modules"]
|
|
}
|