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