This repository has been archived on 2024-07-06. You can view files and clone it, but cannot push or open issues or pull requests.
rebory/tsconfig.json
Matheus Sampaio Queiroga 572fb42ec5
Some checks failed
Test / linux_test (16.x, aarch64, linux) (push) Failing after 2m45s
Test / linux_test (16.x, aarch64, windows) (push) Failing after 2m43s
Test / linux_test (16.x, x86_64, linux) (push) Failing after 2m56s
Test / linux_test (16.x, aarch64, macos) (push) Failing after 4m9s
Test / linux_test (16.x, x86_64, macos) (push) Failing after 2m24s
Test / linux_test (16.x, x86_64, windows) (push) Failing after 2m23s
Test / linux_test (18.x, aarch64, linux) (push) Failing after 3m6s
Test / linux_test (18.x, aarch64, macos) (push) Failing after 2m57s
Test / linux_test (18.x, aarch64, windows) (push) Failing after 2m52s
Test / linux_test (18.x, x86_64, linux) (push) Failing after 2m50s
Test / linux_test (18.x, x86_64, macos) (push) Failing after 2m52s
Test / linux_test (18.x, x86_64, windows) (push) Failing after 2m53s
Test / linux_test (19.x, aarch64, linux) (push) Failing after 2m58s
Test / linux_test (19.x, aarch64, macos) (push) Failing after 2m57s
Test / linux_test (19.x, aarch64, windows) (push) Failing after 3m1s
Test / linux_test (19.x, x86_64, linux) (push) Failing after 2m41s
Test / linux_test (19.x, x86_64, windows) (push) Failing after 2m40s
Test / linux_test (19.x, x86_64, macos) (push) Failing after 3m30s
Test / linux_test (20.x, aarch64, macos) (push) Failing after 2m37s
Test / linux_test (20.x, aarch64, windows) (push) Failing after 2m25s
Test / linux_test (20.x, x86_64, linux) (push) Failing after 2m27s
Test / linux_test (20.x, x86_64, macos) (push) Failing after 2m4s
Test / linux_test (20.x, x86_64, windows) (push) Failing after 2m17s
Test / linux_test (21.x, aarch64, linux) (push) Failing after 2m17s
Test / linux_test (21.x, aarch64, macos) (push) Failing after 2m38s
Test / linux_test (21.x, aarch64, windows) (push) Failing after 2m25s
Test / linux_test (20.x, aarch64, linux) (push) Failing after 9m40s
Test / linux_test (21.x, x86_64, linux) (push) Failing after 2m29s
Test / linux_test (21.x, x86_64, macos) (push) Failing after 2m19s
Test / linux_test (21.x, x86_64, windows) (push) Failing after 2m0s
Init config support
2024-02-13 12:37:52 -03:00

30 lines
614 B
JSON

{
"compilerOptions": {
"esModuleInterop": true,
"module": "NodeNext",
"moduleResolution": "NodeNext",
"target": "ESNext",
"forceConsistentCasingInFileNames": true,
"declaration": true,
"strict": false,
"noUnusedLocals": true,
"isolatedModules": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"allowJs": true,
"resolveJsonModule": true,
"lib": [
"ESNext"
]
},
"exclude": [
"node_modules/",
"test/**"
],
"ts-node": {
"files": true,
"esm": true,
"transpileOnly": true
}
}