mirror of
https://github.com/Mintplex-Labs/nut.js.git
synced 2026-07-21 01:15:22 -04:00
30 lines
520 B
JSON
30 lines
520 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es6"
|
|
],
|
|
"typeRoots": ["./node_modules/@types/", "./lib/types/"],
|
|
"outDir": "./dist",
|
|
"declaration": true,
|
|
|
|
"strict": true,
|
|
"alwaysStrict": true,
|
|
|
|
"noUnusedLocals": true,
|
|
"noImplicitReturns": true,
|
|
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true
|
|
},
|
|
"include": [
|
|
"lib/**/*.ts",
|
|
"index.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|