mirror of
https://github.com/peridotbuild/peridot.git
synced 2024-12-21 10:08:30 +00:00
29 lines
814 B
JSON
29 lines
814 B
JSON
{
|
|
"compilerOptions": {
|
|
"jsx": "react",
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitReturns": true,
|
|
"strict": true,
|
|
"moduleResolution": "node",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"importHelpers": true,
|
|
"lib": ["es2016", "es2018", "es2019", "dom", "dom.iterable"],
|
|
"target": "esnext",
|
|
"allowSyntheticDefaultImports": true,
|
|
"preserveSymlinks": true,
|
|
"esModuleInterop": true,
|
|
"baseUrl": ".",
|
|
"module": "esnext",
|
|
"paths": {
|
|
"*": ["*"],
|
|
"bazel-bin/*": ["bazel-bin/*"],
|
|
"bazel-bin": ["."]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "bazel-peridot", "bazel-bin", "bazel-out", "bazel-testlogs"]
|
|
}
|