mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-09 15:38:03 -05:00
29 lines
539 B
JSON
29 lines
539 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2016",
|
|
"lib": [
|
|
"es6"
|
|
],
|
|
"module": "commonjs",
|
|
"rootDir": "src",
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"outDir": "build",
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"skipLibCheck": true,
|
|
"typeRoots": [
|
|
"./src/types",
|
|
"./node_modules/@types"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
} |